Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
asciidoctor.js
Advanced tools
A JavaScript AsciiDoc processor, cross-compiled from the Ruby-based AsciiDoc implementation, Asciidoctor, using Opal
Asciidoctor.js brings AsciiDoc to the JavaScript world!
This project uses Opal to transpile Asciidoctor, a modern implementation of AsciiDoc, from Ruby to JavaScript to produce asciidoctor.js. The asciidoctor.js script can be run on any JavaScript platform, including Node.js, Nashorn and, of course, a web browser.
IMPORTANT: Asciidoctor.js does not use Semantic Versioning as the release versions are aligned on Asciidoctor (Ruby). It's highly recommended to define the exact version in your package.json
file (ie. without ^
). Please read the release notes when upgrading to the latest version as breaking changes can be introduced in non major release.
You can use Asciidoctor.js either for back-end development using Node.js or front-end development using a browser.
Installing Asciidoctor.js with npm
$ npm install asciidoctor.js --save
Once the package installed, you can add the following script
tag to your HTML page:
<script src="node_modules/asciidoctor.js/dist/browser/asciidoctor.js"></script>
Here is a simple example that converts AsciiDoc to HTML5:
sample.js
var asciidoctor = Asciidoctor(); // <1>
var content = "http://asciidoctor.org[*Asciidoctor*] " +
"running on https://opalrb.com[_Opal_] " +
"brings AsciiDoc to the browser!";
var html = asciidoctor.convert(content); // <2>
console.log(html); // <3>
<1> Instantiate the Asciidoctor.js library <2> Convert AsciiDoc content to HTML5 using Asciidoctor.js <3> Print the HTML5 output to the console
Installing Asciidoctor.js with npm
$ npm install asciidoctor.js --save
Once the package is installed, the first thing to do is to load the asciidoctor.js
module using require
, then you're ready to start using the API:
sample.js
var asciidoctor = require('asciidoctor.js')(); // <1>
var content = "http://asciidoctor.org[*Asciidoctor*] " +
"running on https://opalrb.com[_Opal_] " +
"brings AsciiDoc to Node.js!";
var html = asciidoctor.convert(content); // <2>
console.log(html); // <3>
<1> Instantiate the Asciidoctor.js library <2> Convert AsciiDoc content to HTML5 using Asciidoctor.js <3> Print the HTML5 output to the console
Save the file as sample.js
and run it using the node
command:
$ node sample.js
You should see the following output in your terminal:
<div class="paragraph">
<p><a href="http://asciidoctor.org"><strong>Asciidoctor</strong></a> running on <a href="http://opalrb.com"><em>Opal</em></a> brings AsciiDoc to Node.js!</p>
</div>
If you want to know more about Asciidoctor.js, please read the User Manual.
In the spirit of free software, everyone is encouraged to help improve this project. If you discover errors or omissions in the source code, documentation, or website content, please don't hesitate to submit an issue or open a pull request with a fix. New contributors are always welcome!
The Contributing guide provides information on how to contribute.
If you want to write code, the Contributing Code guide will help you to get started quickly.
Copyright (C) 2018 Dan Allen, Guillaume Grossetie, Anthonny Quérouil and the Asciidoctor Project. Free use of this software is granted under the terms of the MIT License.
See the LICENSE file for details.
FAQs
A JavaScript AsciiDoc processor, cross-compiled from the Ruby-based AsciiDoc implementation, Asciidoctor, using Opal
The npm package asciidoctor.js receives a total of 0 weekly downloads. As such, asciidoctor.js popularity was classified as not popular.
We found that asciidoctor.js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.